home *** CD-ROM | disk | FTP | other *** search
-
- #
- # Makefile - makes tflink.exe from source
- #
- # All objects are dependent on the tflink.h file. TCC -mc option
- # is required to create an effective TSR. This makefile also
- # generates a tflink.map file so that the amount of memory required
- # for a TSR can be gauged.
- #
- OBJECTS = tflink.obj ibmcom.obj tfpcx.obj getopts.obj
-
- tflink.exe: $(OBJECTS)
- tcc -mc -M $(OBJECTS)
-
- $(OBJECTS): tflink.h
-
- .c.obj:
- tcc -mc -c $<
-